home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webhancer_detection.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  131 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12005);
  9.  script_version("$Revision: 1.6 $");
  10.  name["english"] = "WEBHANCER detection";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is using the WEBHANCER program.  
  16. You should ensure that:
  17. - the user intended to install WEBHANCER (it is sometimes silently installed)
  18. - the use of WEBHANCER matches your corporate mandates and security policies.
  19.  
  20. To remove this sort of software, you may wish to check out ad-aware or spybot. 
  21.  
  22. See also : http://www.safersite.com/PestInfo/w/webhancer.asp 
  23.  
  24. Solution : Uninstall this software
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "WEBHANCER detection";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  38.  family["english"] = "Windows";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("smb_registry_full_access.nasl");
  42.  script_require_keys("SMB/registry_full_access");
  43.  
  44.  script_require_ports(139, 445);
  45.  exit(0);
  46. }
  47.  
  48.  
  49. # start the script
  50. if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
  51.  
  52. path[0] = "clsid\{c900b400-cdfe-11d3-976a-00e02913a9e0}";
  53. path[1] = "software\classes\clsid\{c900b400-cdfe-11d3-976a-00e02913a9e0}";
  54. path[2] = "software\classes\interface\{c89435b0-cdfe-11d3-976a-00e02913a9e0}";
  55. path[3] = "software\classes\typelib\{c8cb3870-cdfe-11d3-976a-00e02913a9e0}";
  56. path[4] = "software\classes\whiehelperobj.whiehelperobj.1\clsid";
  57. path[5] = "software\classes\whiehelperobj.whiehelperobj\curver";
  58. path[6] = "software\microsoft\windows\currentversion\app management\arpcache\whsurvey";
  59. path[7] = "software\microsoft\windows\currentversion\explorer\browser helper objects\{c900b400-cdfe-11d3-976a-00e02913a9e0}";
  60. path[8] = "software\microsoft\windows\currentversion\run\webhancer agent";
  61. path[9] = "software\microsoft\windows\currentversion\run\webhancer survey companion";
  62. path[10] = "software\microsoft\windows\currentversion\uninstall\webhancer agent";
  63. path[11] = "software\microsoft\windows\currentversion\uninstall\whsurvey";
  64. path[12] = "software\webhancer";
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72. global_var handle;
  73.  
  74. include("smb_nt.inc");
  75. x_name = kb_smb_name();
  76. if(!x_name)exit(0);
  77.  
  78. _smb_port = kb_smb_transport();
  79. if(!_smb_port)exit(0);
  80.  
  81. if(!get_port_state(_smb_port)) exit(0);
  82. login = kb_smb_login();
  83. pass  = kb_smb_password();
  84. domain = kb_smb_domain();
  85.  
  86. if(!login)login = "";
  87. if(!pass) pass = "";
  88.  
  89.           
  90. soc = open_sock_tcp(_smb_port);
  91. if(!soc) exit(0);
  92.  
  93. #
  94. # Request the session
  95. r = smb_session_request(soc:soc,  remote:x_name);
  96. if(!r) { close(soc); exit(0); }
  97.  
  98. #
  99. # Negociate the protocol
  100. #
  101. prot = smb_neg_prot(soc:soc);
  102. if(!prot){ close(soc); exit(0); }
  103.  
  104.  
  105. r = smb_session_setup(soc:soc, login:login, password:pass, domain:domain, prot:prot);
  106. if(!r){ close(soc); exit(0); }
  107. uid = session_extract_uid(reply:r);
  108.  
  109. r = smb_tconx(soc:soc, name:x_name, uid:uid, share:"IPC$");
  110. tid = tconx_extract_tid(reply:r);
  111. if(!tid){ close(soc); exit(0); }
  112.  
  113.  
  114. r = smbntcreatex(soc:soc, uid:uid, tid:tid, name:"\winreg");
  115. if(!r){ close(soc); exit(0);}
  116. pipe = smbntcreatex_extract_pipe(reply:r);
  117.  
  118. r = pipe_accessible_registry(soc:soc, uid:uid, tid:tid, pipe:pipe);
  119. if(!r){ close(soc); exit(0); }
  120. handle = registry_open_hklm(soc:soc, uid:uid, tid:tid, pipe:pipe);
  121. if ( ! handle ) exit(0);
  122.  
  123.  
  124. for (i=0; path[i]; i++) {
  125.        key_h = registry_get_key(soc:soc, uid:uid, tid:tid, pipe:pipe, key:path[i], reply:handle);
  126.        if(key_h != NULL) {security_hole(kb_smb_transport()); exit(0); }
  127. }
  128.  
  129. close(soc);
  130.